home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 1810 / 1810.xpi / chrome / showcase.jar / content / settings / pref-sidebar.js < prev    next >
Text File  |  2010-01-17  |  1KB  |  18 lines

  1. function sidebarPrefInit() {
  2.   sidebarCustomColorsChanged();
  3.   sidebarScrollTypeChanged();
  4. }
  5.  
  6. function sidebarCustomColorsChanged() {
  7.   var sidebarCustomColorsCheckbox = document.getElementById("sidebarCustomColors");
  8.   document.getElementById("sidebarCustomBackgroundColorLabel").disabled = !sidebarCustomColorsCheckbox.checked;
  9.   document.getElementById("sidebarCustomBackgroundColor").disabled = !sidebarCustomColorsCheckbox.checked;
  10. }
  11.  
  12. function sidebarScrollTypeChanged() {
  13.   var sidebarScrollTypeComboBox = document.getElementById("sidebarScrollType");
  14.   document.getElementById("sidebarThumbnailPreferredMinimumSizeLabel").disabled = (sidebarScrollTypeComboBox.selectedIndex == 0);
  15.   document.getElementById("sidebarThumbnailPreferredMinimumSizePixelsLabel").disabled = (sidebarScrollTypeComboBox.selectedIndex == 0);
  16.   document.getElementById("sidebarThumbnailPreferredMinimumSize").disabled = (sidebarScrollTypeComboBox.selectedIndex == 0);
  17.   document.getElementById("sidebarAlwaysShowScrollbar").disabled = (sidebarScrollTypeComboBox.selectedIndex == 0);
  18. }